*{
color: #000;
}

/* General Styles */
section {
  padding: 4rem 0;
  font-family: sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
} 

/* career Banner */
.career-banner {
  background-color: #43da87; /* Prada’s blue background */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px; /* desktop height */
  text-align: center;
  padding: 20px;
}

/* Text Styling */
.career-content p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 8px;
}

.career-content h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .career-banner {
    height: 220px;
  }

  .career-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .career-banner {
    height: 180px;
  }

  .career-content p {
    font-size: 12px;
  }

  .career-content h2 {
    font-size: 20px;
  }
}

.career-section {
  background: #f5f7fa; /* soft off-white */
  padding: 80px 20px;
  text-align: center;
}

.career-container {
  max-width: 700px;
  margin: 0 auto;
}

/* Heading */
.career-section h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #111;
  margin-bottom: 10px;
}

/* Underline divider */
.career-underline {
  width: 60px;
  height: 2px;
  background: #111;
  margin: 0 auto 40px auto;
}

/* Form */
.form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-wrapper input,
.form-wrapper textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border 0.3s ease;
}

.form-wrapper input:focus,
.form-wrapper textarea:focus {
  outline: none;
  border-color: #000;
}

.career-section .career-container .form-wrapper p {
  text-align: left;
  font-size: 14px;
  color: #6b6b6b;
  margin: 0;
}

/* Button */
.btn-send {
  padding: 14px;
  background: #111;
  color: #fff;
  font-weight: 600;
  border: none;
  letter-spacing: 2px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-send:hover {
  background: #333;
}

/* Server response message */
.response-message {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  text-align: center;
}

/* Responsiveness */
@media (max-width: 768px) {
  .career-section {
    padding: 60px 15px;
  }

  .career-section h2 {
    font-size: 18px;
  }

  .form-wrapper input,
  .form-wrapper textarea {
    font-size: 14px;
    padding: 12px 14px;
  }

  .btn-send {
    font-size: 13px;
    padding: 12px;
  }
}

/* Flex container for form + positions */
.career-flex {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Positions section */
.positions-wrapper {
  background: #fff;
  padding: 20px;
  border: 1px solid #ccc;
  text-align: left;
  flex: 1;
  max-width: 300px;
}

.positions-wrapper h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.positions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #000;
}

.position-item {
  padding: 12px 15px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  cursor: pointer;
  background: #f5f7fa;
  transition: background 0.3s ease;
  color: #000;
}

.position-item:hover {
  background: #e0e0e0;
}

/* Modal styling */
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  border-radius: 4px;
  text-align: left;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease-in-out;
}

.modal-close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

.modal-close:hover {
  color: #e74c3c;
}

#modal-title {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #000;
}

#modal-requirements {
  margin-bottom: 20px;
  list-style: disc;
  padding-left: 20px;
  color: #333;
}

#modal-deadline {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .career-flex {
    flex-direction: column;
    align-items: center;
  }
  .positions-wrapper {
    max-width: 100%;
  }
}